home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / splain < prev    next >
Text File  |  2009-10-01  |  17KB  |  650 lines

  1. #!/usr/bin/perl
  2.     eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
  3.     if $running_under_some_shell;
  4.  
  5. =head1 NAME
  6.  
  7. diagnostics, splain - produce verbose warning diagnostics
  8.  
  9. =head1 SYNOPSIS
  10.  
  11. Using the C<diagnostics> pragma:
  12.  
  13.     use diagnostics;
  14.     use diagnostics -verbose;
  15.  
  16.     enable  diagnostics;
  17.     disable diagnostics;
  18.  
  19. Using the C<splain> standalone filter program:
  20.  
  21.     perl program 2>diag.out
  22.     splain [-v] [-p] diag.out
  23.  
  24. Using diagnostics to get stack traces from a misbehaving script:
  25.  
  26.     perl -Mdiagnostics=-traceonly my_script.pl
  27.  
  28. =head1 DESCRIPTION
  29.  
  30. =head2 The C<diagnostics> Pragma
  31.  
  32. This module extends the terse diagnostics normally emitted by both the
  33. perl compiler and the perl interpreter (from running perl with a -w 
  34. switch or C<use warnings>), augmenting them with the more
  35. explicative and endearing descriptions found in L<perldiag>.  Like the
  36. other pragmata, it affects the compilation phase of your program rather
  37. than merely the execution phase.
  38.  
  39. To use in your program as a pragma, merely invoke
  40.  
  41.     use diagnostics;
  42.  
  43. at the start (or near the start) of your program.  (Note 
  44. that this I<does> enable perl's B<-w> flag.)  Your whole
  45. compilation will then be subject(ed :-) to the enhanced diagnostics.
  46. These still go out B<STDERR>.
  47.  
  48. Due to the interaction between runtime and compiletime issues,
  49. and because it's probably not a very good idea anyway,
  50. you may not use C<no diagnostics> to turn them off at compiletime.
  51. However, you may control their behaviour at runtime using the 
  52. disable() and enable() methods to turn them off and on respectively.
  53.  
  54. The B<-verbose> flag first prints out the L<perldiag> introduction before
  55. any other diagnostics.  The $diagnostics::PRETTY variable can generate nicer
  56. escape sequences for pagers.
  57.  
  58. Warnings dispatched from perl itself (or more accurately, those that match
  59. descriptions found in L<perldiag>) are only displayed once (no duplicate
  60. descriptions).  User code generated warnings a la warn() are unaffected,
  61. allowing duplicate user messages to be displayed.
  62.  
  63. This module also adds a stack trace to the error message when perl dies.
  64. This is useful for pinpointing what caused the death. The B<-traceonly> (or
  65. just B<-t>) flag turns off the explanations of warning messages leaving just
  66. the stack traces. So if your script is dieing, run it again with
  67.  
  68.   perl -Mdiagnostics=-traceonly my_bad_script
  69.  
  70. to see the call stack at the time of death. By supplying the B<-warntrace>
  71. (or just B<-w>) flag, any warnings emitted will also come with a stack
  72. trace.
  73.  
  74. =head2 The I<splain> Program
  75.  
  76. While apparently a whole nuther program, I<splain> is actually nothing
  77. more than a link to the (executable) F<diagnostics.pm> module, as well as
  78. a link to the F<diagnostics.pod> documentation.  The B<-v> flag is like
  79. the C<use diagnostics -verbose> directive.
  80. The B<-p> flag is like the
  81. $diagnostics::PRETTY variable.  Since you're post-processing with 
  82. I<splain>, there's no sense in being able to enable() or disable() processing.
  83.  
  84. Output from I<splain> is directed to B<STDOUT>, unlike the pragma.
  85.  
  86. =head1 EXAMPLES
  87.  
  88. The following file is certain to trigger a few errors at both
  89. runtime and compiletime:
  90.  
  91.     use diagnostics;
  92.     print NOWHERE "nothing\n";
  93.     print STDERR "\n\tThis message should be unadorned.\n";
  94.     warn "\tThis is a user warning";
  95.     print "\nDIAGNOSTIC TESTER: Please enter a <CR> here: ";
  96.     my $a, $b = scalar <STDIN>;
  97.     print "\n";
  98.     print $x/$y;
  99.  
  100. If you prefer to run your program first and look at its problem
  101. afterwards, do this:
  102.  
  103.     perl -w test.pl 2>test.out
  104.     ./splain < test.out
  105.  
  106. Note that this is not in general possible in shells of more dubious heritage, 
  107. as the theoretical 
  108.  
  109.     (perl -w test.pl >/dev/tty) >& test.out
  110.     ./splain < test.out
  111.  
  112. Because you just moved the existing B<stdout> to somewhere else.
  113.  
  114. If you don't want to modify your source code, but still have on-the-fly
  115. warnings, do this:
  116.  
  117.     exec 3>&1; perl -w test.pl 2>&1 1>&3 3>&- | splain 1>&2 3>&- 
  118.  
  119. Nifty, eh?
  120.  
  121. If you want to control warnings on the fly, do something like this.
  122. Make sure you do the C<use> first, or you won't be able to get
  123. at the enable() or disable() methods.
  124.  
  125.     use diagnostics; # checks entire compilation phase 
  126.     print "\ntime for 1st bogus diags: SQUAWKINGS\n";
  127.     print BOGUS1 'nada';
  128.     print "done with 1st bogus\n";
  129.  
  130.     disable diagnostics; # only turns off runtime warnings
  131.     print "\ntime for 2nd bogus: (squelched)\n";
  132.     print BOGUS2 'nada';
  133.     print "done with 2nd bogus\n";
  134.  
  135.     enable diagnostics; # turns back on runtime warnings
  136.     print "\ntime for 3rd bogus: SQUAWKINGS\n";
  137.     print BOGUS3 'nada';
  138.     print "done with 3rd bogus\n";
  139.  
  140.     disable diagnostics;
  141.     print "\ntime for 4th bogus: (squelched)\n";
  142.     print BOGUS4 'nada';
  143.     print "done with 4th bogus\n";
  144.  
  145. =head1 INTERNALS
  146.  
  147. Diagnostic messages derive from the F<perldiag.pod> file when available at
  148. runtime.  Otherwise, they may be embedded in the file itself when the
  149. splain package is built.   See the F<Makefile> for details.
  150.  
  151. If an extant $SIG{__WARN__} handler is discovered, it will continue
  152. to be honored, but only after the diagnostics::splainthis() function 
  153. (the module's $SIG{__WARN__} interceptor) has had its way with your
  154. warnings.
  155.  
  156. There is a $diagnostics::DEBUG variable you may set if you're desperately
  157. curious what sorts of things are being intercepted.
  158.  
  159.     BEGIN { $diagnostics::DEBUG = 1 } 
  160.  
  161.  
  162. =head1 BUGS
  163.  
  164. Not being able to say "no diagnostics" is annoying, but may not be
  165. insurmountable.
  166.  
  167. The C<-pretty> directive is called too late to affect matters.
  168. You have to do this instead, and I<before> you load the module.
  169.  
  170.     BEGIN { $diagnostics::PRETTY = 1 } 
  171.  
  172. I could start up faster by delaying compilation until it should be
  173. needed, but this gets a "panic: top_level" when using the pragma form
  174. in Perl 5.001e.
  175.  
  176. While it's true that this documentation is somewhat subserious, if you use
  177. a program named I<splain>, you should expect a bit of whimsy.
  178.  
  179. =head1 AUTHOR
  180.  
  181. Tom Christiansen <F<tchrist@mox.perl.com>>, 25 June 1995.
  182.  
  183. =cut
  184.  
  185. use strict;
  186. use 5.009001;
  187. use Carp;
  188. $Carp::Internal{__PACKAGE__.""}++;
  189.  
  190. our $VERSION = 1.17;
  191. our $DEBUG;
  192. our $VERBOSE;
  193. our $PRETTY;
  194. our $TRACEONLY = 0;
  195. our $WARNTRACE = 0;
  196.  
  197. use Config;
  198. my($privlib, $archlib) = @Config{qw(privlibexp archlibexp)};
  199. if ($^O eq 'VMS') {
  200.     require VMS::Filespec;
  201.     $privlib = VMS::Filespec::unixify($privlib);
  202.     $archlib = VMS::Filespec::unixify($archlib);
  203. }
  204. my @trypod = (
  205.        "$archlib/pod/perldiag.pod",
  206.        "$privlib/pod/perldiag-$Config{version}.pod",
  207.        "$privlib/pod/perldiag.pod",
  208.        "$archlib/pods/perldiag.pod",
  209.        "$privlib/pods/perldiag-$Config{version}.pod",
  210.        "$privlib/pods/perldiag.pod",
  211.       );
  212. # handy for development testing of new warnings etc
  213. unshift @trypod, "./pod/perldiag.pod" if -e "pod/perldiag.pod";
  214. (my $PODFILE) = ((grep { -e } @trypod), $trypod[$#trypod])[0];
  215.  
  216. if ($^O eq 'MacOS') {
  217.     # just updir one from each lib dir, we'll find it ...
  218.     ($PODFILE) = grep { -e } map { "$_:pod:perldiag.pod" } @INC;
  219. }
  220.  
  221.  
  222. $DEBUG ||= 0;
  223. my $WHOAMI = ref bless [];  # nobody's business, prolly not even mine
  224.  
  225. local $| = 1;
  226. my $_;
  227.  
  228. my $standalone;
  229. my(%HTML_2_Troff, %HTML_2_Latin_1, %HTML_2_ASCII_7);
  230.  
  231. CONFIG: {
  232.     our $opt_p = our $opt_d = our $opt_v = our $opt_f = '';
  233.  
  234.     unless (caller) {
  235.     $standalone++;
  236.     require Getopt::Std;
  237.     Getopt::Std::getopts('pdvf:')
  238.         or die "Usage: $0 [-v] [-p] [-f splainpod]";
  239.     $PODFILE = $opt_f if $opt_f;
  240.     $DEBUG = 2 if $opt_d;
  241.     $VERBOSE = $opt_v;
  242.     $PRETTY = $opt_p;
  243.     }
  244.  
  245.     if (open(POD_DIAG, $PODFILE)) {
  246.     warn "Happy happy podfile from real $PODFILE\n" if $DEBUG;
  247.     last CONFIG;
  248.     } 
  249.  
  250.     if (caller) {
  251.     INCPATH: {
  252.         for my $file ( (map { "$_/$WHOAMI.pm" } @INC), $0) {
  253.         warn "Checking $file\n" if $DEBUG;
  254.         if (open(POD_DIAG, $file)) {
  255.             while (<POD_DIAG>) {
  256.             next unless
  257.                 /^__END__\s*# wish diag dbase were more accessible/;
  258.             print STDERR "podfile is $file\n" if $DEBUG;
  259.             last INCPATH;
  260.             }
  261.         }
  262.         } 
  263.     }
  264.     } else { 
  265.     print STDERR "podfile is <DATA>\n" if $DEBUG;
  266.     *POD_DIAG = *main::DATA;
  267.     }
  268. }
  269. if (eof(POD_DIAG)) { 
  270.     die "couldn't find diagnostic data in $PODFILE @INC $0";
  271. }
  272.  
  273.  
  274. %HTML_2_Troff = (
  275.     'amp'    =>    '&',    #   ampersand
  276.     'lt'    =>    '<',    #   left chevron, less-than
  277.     'gt'    =>    '>',    #   right chevron, greater-than
  278.     'quot'    =>    '"',    #   double quote
  279.  
  280.     "Aacute"    =>    "A\\*'",    #   capital A, acute accent
  281.     # etc
  282.  
  283. );
  284.  
  285. %HTML_2_Latin_1 = (
  286.     'amp'    =>    '&',    #   ampersand
  287.     'lt'    =>    '<',    #   left chevron, less-than
  288.     'gt'    =>    '>',    #   right chevron, greater-than
  289.     'quot'    =>    '"',    #   double quote
  290.  
  291.     "Aacute"    =>    "\xC1"    #   capital A, acute accent
  292.  
  293.     # etc
  294. );
  295.  
  296. %HTML_2_ASCII_7 = (
  297.     'amp'    =>    '&',    #   ampersand
  298.     'lt'    =>    '<',    #   left chevron, less-than
  299.     'gt'    =>    '>',    #   right chevron, greater-than
  300.     'quot'    =>    '"',    #   double quote
  301.  
  302.     "Aacute"    =>    "A"    #   capital A, acute accent
  303.     # etc
  304. );
  305.  
  306. our %HTML_Escapes;
  307. *HTML_Escapes = do {
  308.     if ($standalone) {
  309.     $PRETTY ? \%HTML_2_Latin_1 : \%HTML_2_ASCII_7; 
  310.     } else {
  311.     \%HTML_2_Latin_1; 
  312.     }
  313. }; 
  314.  
  315. *THITHER = $standalone ? *STDOUT : *STDERR;
  316.  
  317. my %transfmt = (); 
  318. my $transmo = <<EOFUNC;
  319. sub transmo {
  320.     #local \$^W = 0;  # recursive warnings we do NOT need!
  321.     study;
  322. EOFUNC
  323.  
  324. my %msg;
  325. {
  326.     print STDERR "FINISHING COMPILATION for $_\n" if $DEBUG;
  327.     local $/ = '';
  328.     my $header;
  329.     my $for_item;
  330.     while (<POD_DIAG>) {
  331.  
  332.     unescape();
  333.     if ($PRETTY) {
  334.         sub noop   { return $_[0] }  # spensive for a noop
  335.         sub bold   { my $str =$_[0];  $str =~ s/(.)/$1\b$1/g; return $str; } 
  336.         sub italic { my $str = $_[0]; $str =~ s/(.)/_\b$1/g;  return $str; } 
  337.         s/C<<< (.*?) >>>|C<< (.*?) >>|[BC]<(.*?)>/bold($+)/ges;
  338.         s/[LIF]<(.*?)>/italic($1)/ges;
  339.     } else {
  340.         s/C<<< (.*?) >>>|C<< (.*?) >>|[BC]<(.*?)>/$+/gs;
  341.         s/[LIF]<(.*?)>/$1/gs;
  342.     } 
  343.     unless (/^=/) {
  344.         if (defined $header) { 
  345.         if ( $header eq 'DESCRIPTION' && 
  346.             (   /Optional warnings are enabled/ 
  347.              || /Some of these messages are generic./
  348.             ) )
  349.         {
  350.             next;
  351.         }
  352.         s/^/    /gm;
  353.         $msg{$header} .= $_;
  354.          undef $for_item;    
  355.         }
  356.         next;
  357.     } 
  358.     unless ( s/=item (.*?)\s*\z//) {
  359.  
  360.         if ( s/=head1\sDESCRIPTION//) {
  361.         $msg{$header = 'DESCRIPTION'} = '';
  362.         undef $for_item;
  363.         }
  364.         elsif( s/^=for\s+diagnostics\s*\n(.*?)\s*\z// ) {
  365.         $for_item = $1;
  366.         } 
  367.         next;
  368.     }
  369.  
  370.     if( $for_item ) { $header = $for_item; undef $for_item } 
  371.     else {
  372.         $header = $1;
  373.         while( $header =~ /[;,]\z/ ) {
  374.         <POD_DIAG> =~ /^\s*(.*?)\s*\z/;
  375.         $header .= ' '.$1;
  376.         }
  377.     }
  378.  
  379.     # strip formatting directives from =item line
  380.     $header =~ s/[A-Z]<(.*?)>/$1/g;
  381.  
  382.         my @toks = split( /(%l?[dx]|%c|%(?:\.\d+)?s)/, $header );
  383.     if (@toks > 1) {
  384.             my $conlen = 0;
  385.             for my $i (0..$#toks){
  386.                 if( $i % 2 ){
  387.                     if(      $toks[$i] eq '%c' ){
  388.                         $toks[$i] = '.';
  389.                     } elsif( $toks[$i] eq '%d' ){
  390.                         $toks[$i] = '\d+';
  391.                     } elsif( $toks[$i] eq '%s' ){
  392.                         $toks[$i] = $i == $#toks ? '.*' : '.*?';
  393.                     } elsif( $toks[$i] =~ '%.(\d+)s' ){
  394.                         $toks[$i] = ".{$1}";
  395.                      } elsif( $toks[$i] =~ '^%l*x$' ){
  396.                         $toks[$i] = '[\da-f]+';
  397.                    }
  398.                 } elsif( length( $toks[$i] ) ){
  399.                     $toks[$i] = quotemeta $toks[$i];
  400.                     $conlen += length( $toks[$i] );
  401.                 }
  402.             }  
  403.             my $lhs = join( '', @toks );
  404.         $transfmt{$header}{pat} =
  405.               "    s{^$lhs}\n     {\Q$header\E}s\n\t&& return 1;\n";
  406.             $transfmt{$header}{len} = $conlen;
  407.     } else {
  408.             $transfmt{$header}{pat} =
  409.           "    m{^\Q$header\E} && return 1;\n";
  410.             $transfmt{$header}{len} = length( $header );
  411.     } 
  412.  
  413.     print STDERR "$WHOAMI: Duplicate entry: \"$header\"\n"
  414.         if $msg{$header};
  415.  
  416.     $msg{$header} = '';
  417.     } 
  418.  
  419.  
  420.     close POD_DIAG unless *main::DATA eq *POD_DIAG;
  421.  
  422.     die "No diagnostics?" unless %msg;
  423.  
  424.     # Apply patterns in order of decreasing sum of lengths of fixed parts
  425.     # Seems the best way of hitting the right one.
  426.     for my $hdr ( sort { $transfmt{$b}{len} <=> $transfmt{$a}{len} }
  427.                   keys %transfmt ){
  428.         $transmo .= $transfmt{$hdr}{pat};
  429.     }
  430.     $transmo .= "    return 0;\n}\n";
  431.     print STDERR $transmo if $DEBUG;
  432.     eval $transmo;
  433.     die $@ if $@;
  434. }
  435.  
  436. if ($standalone) {
  437.     if (!@ARGV and -t STDIN) { print STDERR "$0: Reading from STDIN\n" } 
  438.     while (defined (my $error = <>)) {
  439.     splainthis($error) || print THITHER $error;
  440.     } 
  441.     exit;
  442.  
  443. my $olddie;
  444. my $oldwarn;
  445.  
  446. sub import {
  447.     shift;
  448.     $^W = 1; # yup, clobbered the global variable; 
  449.          # tough, if you want diags, you want diags.
  450.     return if defined $SIG{__WARN__} && ($SIG{__WARN__} eq \&warn_trap);
  451.  
  452.     for (@_) {
  453.  
  454.     /^-d(ebug)?$/            && do {
  455.                     $DEBUG++;
  456.                     next;
  457.                    };
  458.  
  459.     /^-v(erbose)?$/     && do {
  460.                     $VERBOSE++;
  461.                     next;
  462.                    };
  463.  
  464.     /^-p(retty)?$/         && do {
  465.                     print STDERR "$0: I'm afraid it's too late for prettiness.\n";
  466.                     $PRETTY++;
  467.                     next;
  468.                    };
  469.     # matches trace and traceonly for legacy doc mixup reasons
  470.     /^-t(race(only)?)?$/    && do {
  471.                     $TRACEONLY++;
  472.                     next;
  473.                    };
  474.     /^-w(arntrace)?$/     && do {
  475.                     $WARNTRACE++;
  476.                     next;
  477.                    };
  478.  
  479.     warn "Unknown flag: $_";
  480.     } 
  481.  
  482.     $oldwarn = $SIG{__WARN__};
  483.     $olddie = $SIG{__DIE__};
  484.     $SIG{__WARN__} = \&warn_trap;
  485.     $SIG{__DIE__} = \&death_trap;
  486.  
  487. sub enable { &import }
  488.  
  489. sub disable {
  490.     shift;
  491.     return unless $SIG{__WARN__} eq \&warn_trap;
  492.     $SIG{__WARN__} = $oldwarn || '';
  493.     $SIG{__DIE__} = $olddie || '';
  494.  
  495. sub warn_trap {
  496.     my $warning = $_[0];
  497.     if (caller eq $WHOAMI or !splainthis($warning)) {
  498.     if ($WARNTRACE) {
  499.         print STDERR Carp::longmess($warning);
  500.     } else {
  501.         print STDERR $warning;
  502.     }
  503.     } 
  504.     goto &$oldwarn if defined $oldwarn and $oldwarn and $oldwarn ne \&warn_trap;
  505. };
  506.  
  507. sub death_trap {
  508.     my $exception = $_[0];
  509.  
  510.     # See if we are coming from anywhere within an eval. If so we don't
  511.     # want to explain the exception because it's going to get caught.
  512.     my $in_eval = 0;
  513.     my $i = 0;
  514.     while (my $caller = (caller($i++))[3]) {
  515.       if ($caller eq '(eval)') {
  516.     $in_eval = 1;
  517.     last;
  518.       }
  519.     }
  520.  
  521.     splainthis($exception) unless $in_eval;
  522.     if (caller eq $WHOAMI) { print STDERR "INTERNAL EXCEPTION: $exception"; } 
  523.     &$olddie if defined $olddie and $olddie and $olddie ne \&death_trap;
  524.  
  525.     return if $in_eval;
  526.  
  527.     # We don't want to unset these if we're coming from an eval because
  528.     # then we've turned off diagnostics.
  529.  
  530.     # Switch off our die/warn handlers so we don't wind up in our own
  531.     # traps.
  532.     $SIG{__DIE__} = $SIG{__WARN__} = '';
  533.  
  534.     # Have carp skip over death_trap() when showing the stack trace.
  535.     local($Carp::CarpLevel) = 1;
  536.  
  537.     confess "Uncaught exception from user code:\n\t$exception";
  538.     # up we go; where we stop, nobody knows, but i think we die now
  539.     # but i'm deeply afraid of the &$olddie guy reraising and us getting
  540.     # into an indirect recursion loop
  541. };
  542.  
  543. my %exact_duplicate;
  544. my %old_diag;
  545. my $count;
  546. my $wantspace;
  547. sub splainthis {
  548.     return 0 if $TRACEONLY;
  549.     $_ = shift;
  550.     local $\;
  551.     local $!;
  552.     ### &finish_compilation unless %msg;
  553.     s/\.?\n+$//;
  554.     my $orig = $_;
  555.     # return unless defined;
  556.  
  557.     # get rid of the where-are-we-in-input part
  558.     s/, <.*?> (?:line|chunk).*$//;
  559.  
  560.     # Discard 1st " at <file> line <no>" and all text beyond
  561.     # but be aware of messsages containing " at this-or-that"
  562.     my $real = 0;
  563.     my @secs = split( / at / );
  564.     return unless @secs;
  565.     $_ = $secs[0];
  566.     for my $i ( 1..$#secs ){
  567.         if( $secs[$i] =~ /.+? (?:line|chunk) \d+/ ){
  568.             $real = 1;
  569.             last;
  570.         } else {
  571.             $_ .= ' at ' . $secs[$i];
  572.     }
  573.     }
  574.     
  575.     # remove parenthesis occurring at the end of some messages 
  576.     s/^\((.*)\)$/$1/;
  577.  
  578.     if ($exact_duplicate{$orig}++) {
  579.     return &transmo;
  580.     } else {
  581.     return 0 unless &transmo;
  582.     }
  583.  
  584.     $orig = shorten($orig);
  585.     if ($old_diag{$_}) {
  586.     autodescribe();
  587.     print THITHER "$orig (#$old_diag{$_})\n";
  588.     $wantspace = 1;
  589.     } else {
  590.     autodescribe();
  591.     $old_diag{$_} = ++$count;
  592.     print THITHER "\n" if $wantspace;
  593.     $wantspace = 0;
  594.     print THITHER "$orig (#$old_diag{$_})\n";
  595.     if ($msg{$_}) {
  596.         print THITHER $msg{$_};
  597.     } else {
  598.         if (0 and $standalone) { 
  599.         print THITHER "    **** Error #$old_diag{$_} ",
  600.             ($real ? "is" : "appears to be"),
  601.             " an unknown diagnostic message.\n\n";
  602.         }
  603.         return 0;
  604.     } 
  605.     }
  606.     return 1;
  607.  
  608. sub autodescribe {
  609.     if ($VERBOSE and not $count) {
  610.     print THITHER &{$PRETTY ? \&bold : \&noop}("DESCRIPTION OF DIAGNOSTICS"),
  611.         "\n$msg{DESCRIPTION}\n";
  612.     } 
  613.  
  614. sub unescape { 
  615.     s {
  616.             E<  
  617.             ( [A-Za-z]+ )       
  618.             >   
  619.     } { 
  620.          do {   
  621.              exists $HTML_Escapes{$1}
  622.                 ? do { $HTML_Escapes{$1} }
  623.                 : do {
  624.                     warn "Unknown escape: E<$1> in $_";
  625.                     "E<$1>";
  626.                 } 
  627.          } 
  628.     }egx;
  629. }
  630.  
  631. sub shorten {
  632.     my $line = $_[0];
  633.     if (length($line) > 79 and index($line, "\n") == -1) {
  634.     my $space_place = rindex($line, ' ', 79);
  635.     if ($space_place != -1) {
  636.         substr($line, $space_place, 1) = "\n\t";
  637.     } 
  638.     } 
  639.     return $line;
  640.  
  641.  
  642. 1 unless $standalone;  # or it'll complain about itself
  643. __END__ # wish diag dbase were more accessible
  644.